Profile Menu
Design and Skin Customization
Give this a try:
<li><a href="{$jamroom_url}/{$_user.profile_url}">My Profile</a></li>
You'll most likely need to wrap that in a jrUser_is_logged_in if statement as it should only show to logged in users.
{if jrUser_is_logged_in()}
<li><a href="{$jamroom_url}/{$_user.profile_url}">My Profile</a></li>
{/if}
Hope this helps!